Global Const CF_EFFECTS = &H100& 'Specifies that the dialog box should enable strikethrough, underline, and color effects.
Global Const CF_FIXEDPITCHONLY = &H4000& 'Specifies that the dialog box should select only fixed-pitch fonts.
Global Const CF_FORCEFONTEXIST = &H10000 'Specifies that an error message box is displayed if the user attempts to select a font or style that does not exist.
Global Const CF_LIMITSIZE = &H2000& 'Specifies that the dialog box should select only font sizes within the range specified by the Min and Max properties.
Global Const CF_NOSIMULATIONS = &H1000& 'Specifies that the dialog box should not allow GDI (graphic device interface) font simulations.
Global Const CF_NOVECTORFONTS = &H800& 'Specifies that the dialog box should not allow vector-font selections.
Global Const CF_PRINTERFONTS = &H2& 'Causes the dialog box to list only the fonts supported by the printer, specified by the hDC property.
Global Const CF_SCALABLEONLY = &H20000 'Specifies that the dialog box should allow only the selection of fonts that can be scaled.
Global Const CF_SCREENFONTS = &H1& 'Causes the dialog box to list only the screen fonts supported by the system.
Global Const CF_SHOWHELP = &H4& 'Causes the dialog box to display a Help button.
Global Const CF_TTONLY = &H40000 'Specifies that the dialog box should allow only the selection of TrueType fonts.
Global Const CF_WYSIWYG = &H8000& 'Specifies that the dialog box should allow only the selection of fonts that are available on both the printer and the display. If this flag is set, the CF_BOTH and CF_SCALABLEONLY flags should also be set.
' Draw Mode Flags
Global Const R2_BLACK = 1 'Pixel is always black.
Global Const R2_WHITE = 16 'Pixel is always white.
Global Const R2_NOP = 11 'Pixel remains unchanged.
Global Const R2_NOT = 6 'Pixel is the inverse of the screen color.
Global Const R2_COPYPEN = 13 'Pixel is the pen color.
Global Const R2_NOTCOPYPEN = 4 'Pixel is the inverse of the pen color.
Global Const R2_MERGEPENNOT = 14 'Pixel is a combination of the pen color and the inverse of the screen color (final pixel = (~screen pixel) | pen).
Global Const R2_MASKPENNOT = 5 'Pixel is a combination of the colors common to both the pen and the inverse of the screen (final pixel = (~screen pixel) & pen).
Global Const R2_MERGENOTPEN = 12 'Pixel is a combination of the screen color and the inverse of the pen color (final pixel = (~pen) | screen pixel).
Global Const R2_MASKNOTPEN = 3 'Pixel is a combination of the colors common to both the screen and the inverse of the pen (final pixel = (~pen) & screen pixel).
Global Const R2_MERGEPEN = 15 'Pixel is a combination of the pen color and the screen color (final pixel = pen | screen pixel).
Global Const R2_NOTMERGEPEN = 2 'Pixel is the inverse of the R2_MERGEPEN color (final pixel = ~(pen | screen pixel)).
Global Const R2_MASKPEN = 9 'Pixel is a combination of the colors common to both the pen and the screen (final pixel = pen & screen pixel).
Global Const R2_NOTMASKPEN = 8 'Pixel is the inverse of the R2_MASKPEN color (final pixel = ~(pen & screen pixel)).
Global Const R2_XORPEN = 7 'Pixel is a combination of the colors that are in the pen and in the screen, but not in both (final pixel = pen ^ screen pixel).
Global Const R2_NOTXORPEN = 10 'Pixel is the inverse of the R2_XORPEN color (final pixel = ~(pen ^ screen pixel)).